home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / lfs / lfsFileLayoutInt.h < prev    next >
C/C++ Source or Header  |  1990-10-19  |  1KB  |  34 lines

  1. /*
  2.  * lfsFileLayoutInt.h --
  3.  *
  4.  *    Declarations of data structures describing the layout of 
  5.  *    files and descriptors in LFS segments.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/kernel/lfs/RCS/lfsFileLayoutInt.h,v 1.2 90/10/19 17:22:49 mendel Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _LFSFILELAYOUTINT
  20. #define _LFSFILELAYOUTINT
  21.  
  22. #include <lfsFileLayout.h>
  23.  
  24. typedef struct LfsFileLayout {
  25.     LfsFileLayoutParams     params;    /* File layout description. */
  26. } LfsFileLayout;
  27.  
  28. extern void LfsFileLayoutInit _ARGS_((void));
  29. extern Boolean LfsFileMatch _ARGS_((Fscache_FileInfo *cacheInfoPtr,
  30.             ClientData clientData));
  31.  
  32.  
  33. #endif /* _LFSFILELAYOUTINT */
  34.